3.4.29 \(\int \sqrt {x^4 (a+b x^3)} \, dx\)

Optimal. Leaf size=25 \[ \frac {2 \left (a x^4+b x^7\right )^{3/2}}{9 b x^6} \]

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 25, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 15, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.133, Rules used = {1979, 2000} \begin {gather*} \frac {2 \left (a x^4+b x^7\right )^{3/2}}{9 b x^6} \end {gather*}

Antiderivative was successfully verified.

[In]

Int[Sqrt[x^4*(a + b*x^3)],x]

[Out]

(2*(a*x^4 + b*x^7)^(3/2))/(9*b*x^6)

Rule 1979

Int[(u_)^(p_), x_Symbol] :> Int[ExpandToSum[u, x]^p, x] /; FreeQ[p, x] && GeneralizedBinomialQ[u, x] &&  !Gene
ralizedBinomialMatchQ[u, x]

Rule 2000

Int[((a_.)*(x_)^(j_.) + (b_.)*(x_)^(n_.))^(p_), x_Symbol] :> Simp[(a*x^j + b*x^n)^(p + 1)/(b*(n - j)*(p + 1)*x
^(n - 1)), x] /; FreeQ[{a, b, j, n, p}, x] &&  !IntegerQ[p] && NeQ[n, j] && EqQ[j*p - n + j + 1, 0]

Rubi steps

\begin {align*} \int \sqrt {x^4 \left (a+b x^3\right )} \, dx &=\int \sqrt {a x^4+b x^7} \, dx\\ &=\frac {2 \left (a x^4+b x^7\right )^{3/2}}{9 b x^6}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 25, normalized size = 1.00 \begin {gather*} \frac {2 \left (x^4 \left (a+b x^3\right )\right )^{3/2}}{9 b x^6} \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[Sqrt[x^4*(a + b*x^3)],x]

[Out]

(2*(x^4*(a + b*x^3))^(3/2))/(9*b*x^6)

________________________________________________________________________________________

IntegrateAlgebraic [A]  time = 0.02, size = 25, normalized size = 1.00 \begin {gather*} \frac {2 \left (a x^4+b x^7\right )^{3/2}}{9 b x^6} \end {gather*}

Antiderivative was successfully verified.

[In]

IntegrateAlgebraic[Sqrt[x^4*(a + b*x^3)],x]

[Out]

(2*(a*x^4 + b*x^7)^(3/2))/(9*b*x^6)

________________________________________________________________________________________

fricas [A]  time = 0.39, size = 28, normalized size = 1.12 \begin {gather*} \frac {2 \, \sqrt {b x^{7} + a x^{4}} {\left (b x^{3} + a\right )}}{9 \, b x^{2}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((x^4*(b*x^3+a))^(1/2),x, algorithm="fricas")

[Out]

2/9*sqrt(b*x^7 + a*x^4)*(b*x^3 + a)/(b*x^2)

________________________________________________________________________________________

giac [A]  time = 0.19, size = 14, normalized size = 0.56 \begin {gather*} \frac {2 \, {\left (b x^{3} + a\right )}^{\frac {3}{2}}}{9 \, b} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((x^4*(b*x^3+a))^(1/2),x, algorithm="giac")

[Out]

2/9*(b*x^3 + a)^(3/2)/b

________________________________________________________________________________________

maple [A]  time = 0.05, size = 29, normalized size = 1.16 \begin {gather*} \frac {2 \left (b \,x^{3}+a \right ) \sqrt {\left (b \,x^{3}+a \right ) x^{4}}}{9 b \,x^{2}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((x^4*(b*x^3+a))^(1/2),x)

[Out]

2/9*(b*x^3+a)*(x^4*(b*x^3+a))^(1/2)/b/x^2

________________________________________________________________________________________

maxima [A]  time = 1.47, size = 14, normalized size = 0.56 \begin {gather*} \frac {2 \, {\left (b x^{3} + a\right )}^{\frac {3}{2}}}{9 \, b} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((x^4*(b*x^3+a))^(1/2),x, algorithm="maxima")

[Out]

2/9*(b*x^3 + a)^(3/2)/b

________________________________________________________________________________________

mupad [B]  time = 5.21, size = 22, normalized size = 0.88 \begin {gather*} \frac {2\,{\left (b\,x^3+a\right )}^{3/2}\,\sqrt {x^4}}{9\,b\,x^2} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((x^4*(a + b*x^3))^(1/2),x)

[Out]

(2*(a + b*x^3)^(3/2)*(x^4)^(1/2))/(9*b*x^2)

________________________________________________________________________________________

sympy [F]  time = 0.00, size = 0, normalized size = 0.00 \begin {gather*} \int \sqrt {x^{4} \left (a + b x^{3}\right )}\, dx \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((x**4*(b*x**3+a))**(1/2),x)

[Out]

Integral(sqrt(x**4*(a + b*x**3)), x)

________________________________________________________________________________________